TickEvent

sealed class TickEvent : Event(source)

This is the base class for a Tick Event. Tick Events can be Pre and Post, but you will never receive a base Tick Event. These are each called every game tick, or every 50/timer milliseconds (every 1/20th of a second at timer 1). The game's timer speed will never change (unless modified by cheats), so it is safe to assume that it is 1.

Inheritors

Types

Link copied to clipboard
object Post : TickEvent

Post Tick Events are called at the end of a tick.

Link copied to clipboard
object Pre : TickEvent

Pre Tick Events are called at the start of a tick.